We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/superglue-ai/superglue'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"use client"
import { RunsTable } from "@/src/components/runs/RunsTable";
import { Button } from "@/src/components/ui/button";
import { ArrowLeft } from "lucide-react";
import { useParams, useRouter } from "next/navigation";
export default function RunsPage() {
const { id } = useParams();
const router = useRouter();
return (
<div className="p-8 max-w-none w-full min-h-full">
<Button
variant="ghost"
onClick={() => router.push('/configs')}
className="mb-4"
>
<ArrowLeft className="mr-2 h-4 w-4" />
Back
</Button>
<RunsTable id={id as string} />
</div>
);
}